home *** CD-ROM | disk | FTP | other *** search
/ Data Base of the Video Yearbook 1995 / Data Base of the Video Yearbook 1995 - Disc 2.iso / cosmos / yesnow.dir / 00117.ls < prev    next >
Encoding:
Text File  |  1995-12-19  |  499 b   |  19 lines

  1. on mouseDown
  2.   set h to the locH of sprite clickOn()
  3.   set v to the locV of sprite clickOn()
  4.   repeat while the stillDown
  5.     if rollOver(clickOn()) then
  6.       set the locH of sprite clickOn() to h + 5
  7.       set the locV of sprite clickOn() to v + 5
  8.     else
  9.       set the locH of sprite clickOn() to h
  10.       set the locV of sprite clickOn() to v
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   set the locH of sprite clickOn() to h
  15.   set the locV of sprite clickOn() to v
  16.   updateStage()
  17.   go("6")
  18. end
  19.